home *** CD-ROM | disk | FTP | other *** search
/ Gekkan Dennou Club 147 / Gekkan Dennou Club - 2000.8 Vol. 147 (Japan).7z / Gekkan Dennou Club - 2000.8 Vol. 147 (Japan) (Track 1).bin / games / greversi / grevvs.lzh / src / Makefile < prev    next >
Makefile  |  2000-02-01  |  418b  |  22 lines

  1. AS = has060.x -u -w -c4 -1
  2. LK = lk -e4
  3.  
  4. all: greversi.x
  5.  
  6. greversi.x: main.o think.o graph.o libkt.a
  7.     $(LK) -o greversi.x main.o think.o graph.o libkt.a
  8.  
  9. main.o: main.s doscall.mac iocscall.mac const.equ
  10.     $(AS) main.s
  11.  
  12. think.o: think.s const.equ
  13.     $(AS) think.s
  14.  
  15. graph.o: graph.s doscall.mac iocscall.mac iomap.equ iocswork.equ const.equ
  16.     $(AS) graph.s
  17.  
  18. clean:
  19.     -rm main.o
  20.     -rm think.o
  21.     -rm graph.o
  22.